home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 June / PCWorld_2007-06_cd.bin / v cisle / pfrank / PFrankSetupSVN1.95.exe / {app} / SearchRep_initStubs.py < prev    next >
Text File  |  2007-04-08  |  490b  |  25 lines

  1. #!/usr/bin/python
  2. """
  3. This module sets up the configurator object which is shared
  4. by all the searchrep modules.
  5. """
  6.  
  7. class SearchRepConfig:
  8.   """
  9.   this class used by searchRep modules to configure saved options
  10.   and to set up the command and statistics files which are
  11.   accessed by the  modules.
  12.   """   
  13.             
  14.  
  15.   def __init__ (self) :
  16.  
  17.     # set up current file
  18.     self.filename = ""
  19.     
  20.  
  21.  
  22. # create configurator object
  23. configurator = SearchRepConfig()
  24.  
  25.